1.1.8.21. osx.cocoa.UnusedIvars (ObjC)
Warn about private ivars that are never used.

Examples:

@interface MyObj : NSObject {
@private
  id x; // warn
}
@end

@implementation MyObj
@end